home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_d / tpop3.zip / POP3SU.PAS < prev    next >
Pascal/Delphi Source File  |  1996-03-27  |  598b  |  36 lines

  1. unit Pop3su;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls, ExtCtrls;
  7.  
  8. type
  9.   TSetupDlg = class(TForm)
  10.     OKBtn: TBitBtn;
  11.     CancelBtn: TBitBtn;
  12.     Label1: TLabel;
  13.     ServerEdit: TEdit;
  14.     Label2: TLabel;
  15.     UserNameEdit: TEdit;
  16.     Label3: TLabel;
  17.     PasswordEdit: TEdit;
  18.     Label4: TLabel;
  19.     LogFileNameEdit: TEdit;
  20.     AttDirEdit: TEdit;
  21.     Label5: TLabel;
  22.   private
  23.     { Private declarations }
  24.   public
  25.     { Public declarations }
  26.   end;
  27.  
  28. var
  29.   SetupDlg: TSetupDlg;
  30.  
  31. implementation
  32.  
  33. {$R *.DFM}
  34.  
  35. end.
  36.